home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 22
/
Cream of the Crop 22.iso
/
program
/
snip9611.zip
/
ISPOW2.C
< prev
next >
Wrap
C/C++ Source or Header
|
1996-11-24
|
326b
|
23 lines
/* +++Date last modified: 02-Nov-1995 */
#include <stdio.h>
#include "snipmath.h"
int ispow2(int x)
{
return! ((~(~0U>>1)|x)&x -1) ;
}
#ifdef TEST
int main(void)
{
int i;
for (i = 0; i < 256; ++i)
printf("%3d: %d\n", i, ispow2(i));
return 0;
}
#endif /* TEST */